User registration & user profile – Profile Builder - Version 3.6.1

Version Description

  • Fix: make sure email change request UI only appears on edit profile forms
  • Fix: pass referer url as get parameter when content is restricted with a redirect
  • Fix: issue with an advanced setting hiding the Social Connect buttons from the login form
  • Fix: recaptcha compatibility issue with PMS when Stripe was in the form but not selected as a gateway
  • Fix: restricted the settings import functions to administrators
Download this release

Release Info

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

Code changes from version 3.6.0 to 3.6.1

add-ons-free/import-export/inc/class-pbie-import.php CHANGED
@@ -70,25 +70,32 @@ class WPPB_ImpEx_Import {
70
  /* upload json file function */
71
  public function upload_json_file() {
72
  if( isset( $_POST['cozmos-import'] ) ) {
73
- if( ! empty( $_FILES['cozmos-upload']['tmp_name'] ) ) {
74
- $json_content = file_get_contents( $_FILES['cozmos-upload']['tmp_name'] ); // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
75
- /* save uploaded file to server (for later versions).
76
- $target = dirname( plugin_dir_path( __FILE__ ) ) . '/upload/';
77
- $target = $target . basename( $_FILES['cozmos-upload']['name'] );
78
- move_uploaded_file( $_FILES['cozmos-upload']['tmp_name'], $target );
79
- */
80
- $this->json_to_db( $json_content );
81
- if( empty( $this->pbie_import_messages ) ) {
82
- $this->import_messages[$this->j]['message'] = __( 'Import successfully!', 'profile-builder' );
83
- $this->import_messages[$this->j]['type'] = 'updated';
84
- $this->j++;
85
- flush_rewrite_rules( false );
86
- }
87
- } else {
88
- $this->import_messages[$this->j]['message'] = __( 'Please select a .json file to import!', 'profile-builder' );
89
- $this->import_messages[$this->j]['type'] = 'error';
90
- $this->j++;
91
- }
 
 
 
 
 
 
 
92
  }
93
  }
94
 
70
  /* upload json file function */
71
  public function upload_json_file() {
72
  if( isset( $_POST['cozmos-import'] ) ) {
73
+ if( ( !is_multisite() && current_user_can( apply_filters( 'wppb_settings_import_user_capability', 'manage_options' ) ) ) ||
74
+ ( is_multisite() && current_user_can( apply_filters( 'wppb_multi_settings_import_user_capability', 'manage_network' ) ) ) ) {
75
+ if (!empty($_FILES['cozmos-upload']['tmp_name'])) {
76
+ $json_content = file_get_contents($_FILES['cozmos-upload']['tmp_name']); // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
77
+ /* save uploaded file to server (for later versions).
78
+ $target = dirname( plugin_dir_path( __FILE__ ) ) . '/upload/';
79
+ $target = $target . basename( $_FILES['cozmos-upload']['name'] );
80
+ move_uploaded_file( $_FILES['cozmos-upload']['tmp_name'], $target );
81
+ */
82
+ $this->json_to_db($json_content);
83
+ if (empty($this->pbie_import_messages)) {
84
+ $this->import_messages[$this->j]['message'] = __('Import successfully!', 'profile-builder');
85
+ $this->import_messages[$this->j]['type'] = 'updated';
86
+ $this->j++;
87
+ flush_rewrite_rules(false);
88
+ }
89
+ } else {
90
+ $this->import_messages[$this->j]['message'] = __('Please select a .json file to import!', 'profile-builder');
91
+ $this->import_messages[$this->j]['type'] = 'error';
92
+ $this->j++;
93
+ }
94
+ } else {
95
+ $this->import_messages[$this->j]['message'] = __('You do not have the capabilities required to do this!', 'profile-builder');
96
+ $this->import_messages[$this->j]['type'] = 'error';
97
+ $this->j++;
98
+ }
99
  }
100
  }
101
 
admin/advanced-settings/includes/forms/remember-me.php CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
 
3
- add_action( 'wppb_login_form_bottom', 'wppb_toolbox_rememberme_checked', 99 );
4
- function wppb_toolbox_rememberme_checked() {
5
- return '<script>if ( document.getElementById("rememberme") ) document.getElementById("rememberme").checked = true;</script>';
6
  }
1
  <?php
2
 
3
+ add_action( 'wppb_login_form_bottom', 'wppb_toolbox_rememberme_checked', 99, 2 );
4
+ function wppb_toolbox_rememberme_checked( $form_part, $args ) {
5
+ return $form_part.'<script>if ( document.getElementById("rememberme") ) document.getElementById("rememberme").checked = true;</script>';
6
  }
features/content-restriction/content-restriction-functions.php CHANGED
@@ -174,9 +174,12 @@ function wppb_content_restriction_post_redirect() {
174
  return;
175
  }
176
 
 
 
 
177
  // Redirect
178
  nocache_headers();
179
- wp_redirect( apply_filters( 'wppb_restricted_post_redirect_url', wppb_add_missing_http( $redirect_url ) ) );
180
  exit;
181
 
182
  }
174
  return;
175
  }
176
 
177
+ // Pass the correct referer URL forward
178
+ $redirect_url = add_query_arg( array( 'wppb_referer_url' => urlencode( wppb_curpageurl() ) ), wppb_add_missing_http( $redirect_url ) );
179
+
180
  // Redirect
181
  nocache_headers();
182
+ wp_redirect( apply_filters( 'wppb_restricted_post_redirect_url', $redirect_url ) );
183
  exit;
184
 
185
  }
front-end/default-fields/email/email.php CHANGED
@@ -32,7 +32,8 @@ function wppb_email_handler( $output, $form_location, $field, $user_id, $field_c
32
  if( !empty( $item_description ) )
33
  $output .= '<span class="wppb-description-delimiter">'. $item_description .'</span>';
34
 
35
- if ( $email_input_status == 'enabled' && is_user_logged_in() ) {
 
36
  $output .= '<span class="wppb-description-delimiter">' . __('If you change this, we will send you an email at your new address to confirm it. <br /><strong>The new address will not become active until confirmed.</strong>', 'profile-builder') . '</span>';
37
  }
38
  else if ( $email_input_status == 'disabled' ) {
@@ -42,8 +43,9 @@ function wppb_email_handler( $output, $form_location, $field, $user_id, $field_c
42
  $cancel_request_url = add_query_arg($arr_params, $current_url);
43
  $pending_new_email_address = apply_filters('wppb_new_email_address','');
44
 
45
- $output .= '<span class="wppb-description-delimiter">'. sprintf( __('There is a pending change request of your email to: %s', 'profile-builder'), '<strong>'. $pending_new_email_address .'</strong>' );
46
- $output .= '<a style="float: right;" href="'. esc_url( $cancel_request_url ) .'">'. __('Cancel request', 'profile-builder') .'</a></span>';
 
47
  }
48
 
49
 
32
  if( !empty( $item_description ) )
33
  $output .= '<span class="wppb-description-delimiter">'. $item_description .'</span>';
34
 
35
+ if( $form_location == 'edit_profile' && is_user_logged_in() ) {
36
+ if ( $email_input_status == 'enabled' ) {
37
  $output .= '<span class="wppb-description-delimiter">' . __('If you change this, we will send you an email at your new address to confirm it. <br /><strong>The new address will not become active until confirmed.</strong>', 'profile-builder') . '</span>';
38
  }
39
  else if ( $email_input_status == 'disabled' ) {
43
  $cancel_request_url = add_query_arg($arr_params, $current_url);
44
  $pending_new_email_address = apply_filters('wppb_new_email_address','');
45
 
46
+ $output .= '<span class="wppb-description-delimiter">' . sprintf(__('There is a pending change request of your email to: %s', 'profile-builder'), '<strong>' . $pending_new_email_address . '</strong>');
47
+ $output .= '<a style="float: right;" href="' . esc_url($cancel_request_url) . '">' . __('Cancel request', 'profile-builder') . '</a></span>';
48
+ }
49
  }
50
 
51
 
front-end/default-fields/recaptcha/recaptcha.php CHANGED
@@ -167,7 +167,7 @@ function wppb_recaptcha_script_footer(){
167
  /* dont submit form if PMS gateway is Stripe */
168
  if( jQuery(".pms_pay_gate").length > 0 ){
169
  jQuery(".pms_pay_gate").each( function(){
170
- if( jQuery(this).val() == "stripe_intents" || jQuery(this).val() == "stripe" )
171
  submitForm = false
172
  })
173
  }
167
  /* dont submit form if PMS gateway is Stripe */
168
  if( jQuery(".pms_pay_gate").length > 0 ){
169
  jQuery(".pms_pay_gate").each( function(){
170
+ if( jQuery(this).is(":checked") && ( jQuery(this).val() == "stripe_intents" || jQuery(this).val() == "stripe" ) )
171
  submitForm = false
172
  })
173
  }
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.6.0
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.6.0' );
74
  define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
75
  define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
76
  define('WPPB_PLUGIN_BASENAME', plugin_basename(__FILE__));
3
  Plugin Name: Profile Builder
4
  Plugin URI: https://www.cozmoslabs.com/wordpress-profile-builder/
5
  Description: Login, registration and edit profile shortcodes for the front-end. Also you can choose what fields should be displayed or add new (custom) ones both in the front-end and in the dashboard.
6
+ Version: 3.6.1
7
  Author: Cozmoslabs
8
  Author URI: https://www.cozmoslabs.com/
9
  Text Domain: profile-builder
70
  *
71
  *
72
  */
73
+ define('PROFILE_BUILDER_VERSION', '3.6.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__));
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.6.0
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -176,6 +176,13 @@ 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.6.0 =
180
  * Feature: Added an option to request Email Confirmation from the user when he changes his email address from the edit profile form. Can be activated from Advanced Settings
181
  * Fix: A notice regarding the Email Confirmation table that appeared in some cases
4
  Tags: user registration, user profile, registration, profile, user registration form, user fields, edit profile, user custom fields, front-end login, front-end edit profile, front-end user registration, email confirmation, login form, content restriction, restrict content
5
  Requires at least: 3.1
6
  Tested up to: 5.8.1
7
+ Stable tag: 3.6.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
176
  15. Edit or Add New User Role
177
 
178
  == Changelog ==
179
+ = 3.6.1 =
180
+ * Fix: make sure email change request UI only appears on edit profile forms
181
+ * Fix: pass referer url as get parameter when content is restricted with a redirect
182
+ * Fix: issue with an advanced setting hiding the Social Connect buttons from the login form
183
+ * Fix: recaptcha compatibility issue with PMS when Stripe was in the form but not selected as a gateway
184
+ * Fix: restricted the settings import functions to administrators
185
+
186
  = 3.6.0 =
187
  * Feature: Added an option to request Email Confirmation from the user when he changes his email address from the edit profile form. Can be activated from Advanced Settings
188
  * Fix: A notice regarding the Email Confirmation table that appeared in some cases
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: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:2556, features/content-restriction/content-restriction.php:89, features/two-factor-authentication/class-two-factor-authentication.php:125, admin/advanced-settings/includes/forms/placeholder-labels.php:135, admin/advanced-settings/includes/views/view-admin.php:18, admin/advanced-settings/includes/views/view-admin.php:34, admin/advanced-settings/includes/views/view-admin.php:50, admin/advanced-settings/includes/views/view-admin.php:69, admin/advanced-settings/includes/views/view-admin.php:100, admin/advanced-settings/includes/views/view-fields.php:18, admin/advanced-settings/includes/views/view-fields.php:66, admin/advanced-settings/includes/views/view-fields.php:181, admin/advanced-settings/includes/views/view-fields.php:197, admin/advanced-settings/includes/views/view-fields.php:217, admin/advanced-settings/includes/views/view-fields.php:240, admin/advanced-settings/includes/views/view-fields.php:260, admin/advanced-settings/includes/views/view-fields.php:277, admin/advanced-settings/includes/views/view-fields.php:295, admin/advanced-settings/includes/views/view-forms.php:19, admin/advanced-settings/includes/views/view-forms.php:148, admin/advanced-settings/includes/views/view-forms.php:166, admin/advanced-settings/includes/views/view-forms.php:183, admin/advanced-settings/includes/views/view-forms.php:198, admin/advanced-settings/includes/views/view-forms.php:218, admin/advanced-settings/includes/views/view-forms.php:235, admin/advanced-settings/includes/views/view-forms.php:271, admin/advanced-settings/includes/views/view-forms.php:292, admin/advanced-settings/includes/views/view-forms.php:312, admin/advanced-settings/includes/views/view-forms.php:334, admin/advanced-settings/includes/views/view-forms.php:356, admin/advanced-settings/includes/views/view-forms.php:376, admin/advanced-settings/includes/views/view-shortcodes.php:16, admin/advanced-settings/includes/views/view-shortcodes.php:32, admin/advanced-settings/includes/views/view-shortcodes.php:48, admin/advanced-settings/includes/views/view-shortcodes.php:64, admin/advanced-settings/includes/views/view-userlisting.php:53, admin/advanced-settings/includes/views/view-userlisting.php:75, assets/misc/elementor/widgets/class-pb-widget-l.php:75, assets/misc/elementor/widgets/class-pb-widget-rf-epf.php:179, assets/misc/elementor/widgets/class-pb-widget-ul.php:107
57
  msgid "Yes"
58
  msgstr ""
59
 
@@ -557,275 +557,275 @@ msgstr ""
557
  msgid "Previous"
558
  msgstr ""
559
 
560
- #: ../pb-add-on-social-connect/index.php:185, ../pb-add-on-social-connect/index.php:186, ../pb-add-on-social-connect/index.php:294, ../pb-add-on-social-connect/index.php:298, admin/add-ons.php:102
561
  msgid "Social Connect"
562
  msgstr ""
563
 
564
- #: ../pb-add-on-social-connect/index.php:205
565
  msgid "Display on the Following Forms"
566
  msgstr ""
567
 
568
- #: ../pb-add-on-social-connect/index.php:206
569
  msgid "Disable Registration on"
570
  msgstr ""
571
 
572
- #: ../pb-add-on-social-connect/index.php:206
573
  msgid "Allow only login with Social Connect on Profile Builder Login Form.<br>Social Connect will still automatically register users on other forms."
574
  msgstr ""
575
 
576
- #: ../pb-add-on-social-connect/index.php:207
577
  msgid "Facebook Login"
578
  msgstr ""
579
 
580
- #: ../pb-add-on-social-connect/index.php:208
581
  msgid "Facebook App ID"
582
  msgstr ""
583
 
584
- #: ../pb-add-on-social-connect/index.php:209
585
  msgid "Google Login"
586
  msgstr ""
587
 
588
- #: ../pb-add-on-social-connect/index.php:210
589
  msgid "Google Client ID"
590
  msgstr ""
591
 
592
- #: ../pb-add-on-social-connect/index.php:211
593
  msgid "Twitter Login"
594
  msgstr ""
595
 
596
- #: ../pb-add-on-social-connect/index.php:212
597
  msgid "Twitter API Key"
598
  msgstr ""
599
 
600
- #: ../pb-add-on-social-connect/index.php:213
601
  msgid "Twitter API Secret"
602
  msgstr ""
603
 
604
- #: ../pb-add-on-social-connect/index.php:214
605
  msgid "LinkedIn Login"
606
  msgstr ""
607
 
608
- #: ../pb-add-on-social-connect/index.php:215
609
  msgid "LinkedIn Client ID"
610
  msgstr ""
611
 
612
- #: ../pb-add-on-social-connect/index.php:216
613
  msgid "LinkedIn Client Secret"
614
  msgstr ""
615
 
616
- #: ../pb-add-on-social-connect/index.php:217
617
  msgid "Buttons Order"
618
  msgstr ""
619
 
620
- #: ../pb-add-on-social-connect/index.php:217
621
  msgid "Drag and drop the dots to re-order."
622
  msgstr ""
623
 
624
- #: ../pb-add-on-social-connect/index.php:218
625
  msgid "Buttons Re-Order"
626
  msgstr ""
627
 
628
- #: ../pb-add-on-social-connect/index.php:218
629
  msgid "Save the buttons order from the buttons order checkboxes"
630
  msgstr ""
631
 
632
- #: ../pb-add-on-social-connect/index.php:219
633
  msgid "Buttons Location"
634
  msgstr ""
635
 
636
- #: ../pb-add-on-social-connect/index.php:219
637
  msgid "Display social buttons before or after the forms fields."
638
  msgstr ""
639
 
640
- #: ../pb-add-on-social-connect/index.php:220
641
  msgid "Buttons Style"
642
  msgstr ""
643
 
644
- #: ../pb-add-on-social-connect/index.php:221
645
  msgid "Google Sign In Button"
646
  msgstr ""
647
 
648
- #: ../pb-add-on-social-connect/index.php:222
649
  msgid "Heading Before Buttons (Login/Register)"
650
  msgstr ""
651
 
652
- #: ../pb-add-on-social-connect/index.php:222, ../pb-add-on-social-connect/index.php:223
653
  msgid "Empty field will remove the heading."
654
  msgstr ""
655
 
656
- #: ../pb-add-on-social-connect/index.php:223
657
  msgid "Heading Before Buttons (Edit Profile)"
658
  msgstr ""
659
 
660
- #: ../pb-add-on-social-connect/index.php:224
661
  msgid "Facebook Button Text (Login/Register)"
662
  msgstr ""
663
 
664
- #: ../pb-add-on-social-connect/index.php:225
665
  msgid "Google Button Text (Login/Register)"
666
  msgstr ""
667
 
668
- #: ../pb-add-on-social-connect/index.php:226
669
  msgid "Twitter Button Text (Login/Register)"
670
  msgstr ""
671
 
672
- #: ../pb-add-on-social-connect/index.php:227
673
  msgid "LinkedIn Button Text (Login/Register)"
674
  msgstr ""
675
 
676
- #: ../pb-add-on-social-connect/index.php:228
677
  msgid "Facebook Button Text (Edit Profile)"
678
  msgstr ""
679
 
680
- #: ../pb-add-on-social-connect/index.php:229
681
  msgid "Google Button Text (Edit Profile)"
682
  msgstr ""
683
 
684
- #: ../pb-add-on-social-connect/index.php:230
685
  msgid "Twitter Button Text (Edit Profile)"
686
  msgstr ""
687
 
688
- #: ../pb-add-on-social-connect/index.php:231
689
  msgid "LinkedIn Button Text (Edit Profile)"
690
  msgstr ""
691
 
692
- #: ../pb-add-on-social-connect/index.php:232
693
  msgid "Unlink Accounts (Edit Profile)"
694
  msgstr ""
695
 
696
- #: ../pb-add-on-social-connect/index.php:232
697
  msgid "This option will display linked social platforms to users accounts and will allow to easily unlink them in Edit Profile page."
698
  msgstr ""
699
 
700
- #: ../pb-add-on-social-connect/index.php:233
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
 
708
- #: ../pb-add-on-social-connect/index.php:253
709
  msgid "Help"
710
  msgstr ""
711
 
712
- #: ../pb-add-on-social-connect/index.php:323
713
  msgid "Display Social Connect buttons:"
714
  msgstr ""
715
 
716
- #: ../pb-add-on-social-connect/index.php:372
717
  msgid "You have successfully unlinked %% from your account."
718
  msgstr ""
719
 
720
- #: ../pb-add-on-social-connect/index.php:384
721
  msgid "An account with this email address already exists.<br> Do you want to connect it?"
722
  msgstr ""
723
 
724
- #: ../pb-add-on-social-connect/index.php:387
725
  msgid "Please enter your website account password"
726
  msgstr ""
727
 
728
- #: ../pb-add-on-social-connect/index.php:388
729
  msgid "Please enter a new email"
730
  msgstr ""
731
 
732
- #: ../pb-add-on-social-connect/index.php:389
733
  msgid "You have successfully linked your account to %%."
734
  msgstr ""
735
 
736
- #: ../pb-add-on-social-connect/index.php:390, ../pb-add-on-social-connect/twitter/twitter.php:112
737
  msgid "Something went wrong. Please try again later!"
738
  msgstr ""
739
 
740
- #: ../pb-add-on-social-connect/index.php:391
741
  msgid "Before you can access your account you need to confirm your email address. Please check your inbox and click the activation link."
742
  msgstr ""
743
 
744
- #: ../pb-add-on-social-connect/index.php:392
745
  msgid "<strong>ERROR</strong>: You need to confirm your email address before you can log in."
746
  msgstr ""
747
 
748
- #: ../pb-add-on-social-connect/index.php:393
749
  msgid "Before you can access your account an administrator has to approve it. You will be notified via email."
750
  msgstr ""
751
 
752
- #: ../pb-add-on-social-connect/index.php:394, features/admin-approval/admin-approval.php:194
753
  msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
754
  msgstr ""
755
 
756
- #: ../pb-add-on-social-connect/index.php:395
757
  msgid "You will be redirected in 5 seconds. If not, click %%."
758
  msgstr ""
759
 
760
- #: ../pb-add-on-social-connect/index.php:396, features/functions.php:1337
761
  msgid "here"
762
  msgstr ""
763
 
764
- #: ../pb-add-on-social-connect/index.php:397
765
  msgid "<strong>You can only login with social accounts, not register!</strong><br>Please link your social account to an existing user account first."
766
  msgstr ""
767
 
768
- #: ../pb-add-on-social-connect/index.php:398
769
  msgid "Wrong password!"
770
  msgstr ""
771
 
772
- #: ../pb-add-on-social-connect/index.php:399
773
  msgid "Please enter a valid email!"
774
  msgstr ""
775
 
776
- #: ../pb-add-on-social-connect/index.php:400
777
  msgid "You can only login on this form.<br>Register with your social account on the register form."
778
  msgstr ""
779
 
780
- #: ../pb-add-on-social-connect/index.php:401
781
  msgid "Continue"
782
  msgstr ""
783
 
784
- #: ../pb-add-on-social-connect/index.php:402, ../pb-add-on-social-connect/index.php:421, ../pb-add-on-social-connect/index.php:436
785
  msgid "Ok"
786
  msgstr ""
787
 
788
- #: ../pb-add-on-social-connect/index.php:410
789
  msgid "To create a new account please confirm:"
790
  msgstr ""
791
 
792
- #: ../pb-add-on-social-connect/index.php:411
793
  msgid "You must agree to the Terms And Conditions to create a new account."
794
  msgstr ""
795
 
796
- #: ../pb-add-on-social-connect/index.php:419, ../pb-add-on-social-connect/index.php:420
797
  msgid "Please enter your Facebook email!"
798
  msgstr ""
799
 
800
- #: ../pb-add-on-social-connect/index.php:433
801
  msgid "Waiting for Twitter..."
802
  msgstr ""
803
 
804
- #: ../pb-add-on-social-connect/index.php:434, ../pb-add-on-social-connect/index.php:435
805
  msgid "Please enter your Twitter email!"
806
  msgstr ""
807
 
808
- #: ../pb-add-on-social-connect/index.php:727
809
  msgid "Profile Builder not active!"
810
  msgstr ""
811
 
812
- #: ../pb-add-on-social-connect/index.php:876, admin/admin-functions.php:38, admin/general-settings.php:11
813
  msgid "General Settings"
814
  msgstr ""
815
 
816
- #: ../pb-add-on-social-connect/index.php:880
817
  msgid "Application Settings"
818
  msgstr ""
819
 
820
- #: ../pb-add-on-social-connect/index.php:884
821
  msgid "Appearance Settings"
822
  msgstr ""
823
 
824
- #: ../pb-add-on-social-connect/index.php:948
825
  msgid "Unlink"
826
  msgstr ""
827
 
828
- #: ../pb-add-on-social-connect/index.php:955
829
  msgid "Your account is linked with:"
830
  msgstr ""
831
 
@@ -869,15 +869,15 @@ msgstr ""
869
  msgid "Phone"
870
  msgstr ""
871
 
872
- #: ../pb-add-on-woocommerce/billing-fields.php:278
873
  msgid "Ship to a different address?"
874
  msgstr ""
875
 
876
- #: ../pb-add-on-woocommerce/index.php:853
877
  msgid "WooCommerce needs to be installed and activated for Profile Builder - WooCommerce Sync Add-on to work!"
878
  msgstr ""
879
 
880
- #: ../pb-add-on-woocommerce/index.php:167, ../pb-add-on-woocommerce/index.php:736
881
  msgid "Billing Address"
882
  msgstr ""
883
 
@@ -885,7 +885,7 @@ msgstr ""
885
  msgid "Displays customer billing fields in front-end. "
886
  msgstr ""
887
 
888
- #: ../pb-add-on-woocommerce/index.php:171, ../pb-add-on-woocommerce/index.php:737
889
  msgid "Shipping Address"
890
  msgstr ""
891
 
@@ -893,83 +893,83 @@ msgstr ""
893
  msgid "Displays customer shipping fields in front-end. "
894
  msgstr ""
895
 
896
- #: ../pb-add-on-woocommerce/index.php:246, ../pb-add-on-woocommerce/index.php:265, ../pb-add-on-woocommerce/index.php:365, ../pb-add-on-woocommerce/index.php:362, ../pb-add-on-woocommerce/index.php:792
897
  msgid "Address line 2"
898
  msgstr ""
899
 
900
- #: ../pb-add-on-woocommerce/index.php:254
901
  msgid "Billing Fields"
902
  msgstr ""
903
 
904
- #: ../pb-add-on-woocommerce/index.php:254
905
  msgid "Select which WooCommerce Billing fields to display to the user ( drag and drop to re-order ) and which should be required"
906
  msgstr ""
907
 
908
- #: ../pb-add-on-woocommerce/index.php:255
909
  msgid "Billing Fields Order"
910
  msgstr ""
911
 
912
- #: ../pb-add-on-woocommerce/index.php:255
913
  msgid "Save the billing fields order from the billing fields checkboxes"
914
  msgstr ""
915
 
916
- #: ../pb-add-on-woocommerce/index.php:256
917
  msgid "Billing Fields Name"
918
  msgstr ""
919
 
920
- #: ../pb-add-on-woocommerce/index.php:256
921
  msgid "Save the billing fields names"
922
  msgstr ""
923
 
924
- #: ../pb-add-on-woocommerce/index.php:273
925
  msgid "Shipping Fields"
926
  msgstr ""
927
 
928
- #: ../pb-add-on-woocommerce/index.php:273
929
  msgid "Select which WooCommerce Shipping fields to display to the user ( drag and drop to re-order ) and which should be required"
930
  msgstr ""
931
 
932
- #: ../pb-add-on-woocommerce/index.php:274
933
  msgid "Shipping Fields Order"
934
  msgstr ""
935
 
936
- #: ../pb-add-on-woocommerce/index.php:274
937
  msgid "Save the shipping fields order from the shipping fields checkboxes"
938
  msgstr ""
939
 
940
- #: ../pb-add-on-woocommerce/index.php:275
941
  msgid "Shipping Fields Name"
942
  msgstr ""
943
 
944
- #: ../pb-add-on-woocommerce/index.php:275
945
  msgid "Save the shipping fields names"
946
  msgstr ""
947
 
948
- #: ../pb-add-on-woocommerce/index.php:303
949
  msgid "Field Name"
950
  msgstr ""
951
 
952
- #: ../pb-add-on-woocommerce/index.php:304, admin/manage-fields.php:251
953
  msgid "Required"
954
  msgstr ""
955
 
956
- #: ../pb-add-on-woocommerce/index.php:367
957
  msgid "Click to edit "
958
  msgstr ""
959
 
960
- #: ../pb-add-on-woocommerce/index.php:391, front-end/default-fields/email/email.php:67
961
  msgid "The email you entered is not a valid email address."
962
  msgstr ""
963
 
964
- #: ../pb-add-on-woocommerce/index.php:649
965
  msgid "No options available. Please select one country."
966
  msgstr ""
967
 
968
- #: ../pb-add-on-woocommerce/index.php:668, ../pb-add-on-woocommerce/index.php:693
969
  msgid "Billing "
970
  msgstr ""
971
 
972
- #: ../pb-add-on-woocommerce/index.php:676, ../pb-add-on-woocommerce/index.php:700
973
  msgid "Shipping "
974
  msgstr ""
975
 
@@ -1545,7 +1545,7 @@ msgstr ""
1545
  msgid "Show"
1546
  msgstr ""
1547
 
1548
- #: admin/admin-bar.php:81, add-ons/user-listing/userlisting.php:1766
1549
  msgid "Hide"
1550
  msgstr ""
1551
 
@@ -2077,11 +2077,11 @@ msgstr ""
2077
  msgid "Username and Email"
2078
  msgstr ""
2079
 
2080
- #: admin/general-settings.php:302, admin/manage-fields.php:333, front-end/login.php:334, front-end/login.php:348, front-end/login.php:532, add-ons/custom-redirects/custom_redirects_admin.php:60, add-ons/email-customizer/email-customizer.php:28, add-ons/user-listing/userlisting.php:112, add-ons/user-listing/userlisting.php:335, add-ons/user-listing/userlisting.php:877, add-ons/user-listing/userlisting.php:2510, features/admin-approval/class-admin-approval.php:174, features/email-confirmation/class-email-confirmation.php:168, admin/advanced-settings/includes/views/view-fields.php:121
2081
  msgid "Username"
2082
  msgstr ""
2083
 
2084
- #: admin/general-settings.php:303, front-end/login.php:529, front-end/recover.php:118, add-ons/email-customizer/email-customizer.php:29, add-ons/user-listing/userlisting.php:118, add-ons/user-listing/userlisting.php:883, add-ons/user-listing/userlisting.php:2511, features/admin-approval/class-admin-approval.php:177, features/email-confirmation/class-email-confirmation.php:169, admin/advanced-settings/includes/shortcodes/resend-activation.php:9
2085
  msgid "Email"
2086
  msgstr ""
2087
 
@@ -2601,7 +2601,7 @@ msgstr ""
2601
  msgid "Usernames cannot be changed."
2602
  msgstr ""
2603
 
2604
- #: admin/manage-fields.php:336, add-ons/user-listing/userlisting.php:916, add-ons/user-listing/userlisting.php:2518
2605
  msgid "Nickname"
2606
  msgstr ""
2607
 
@@ -2613,7 +2613,7 @@ msgstr ""
2613
  msgid "E-mail"
2614
  msgstr ""
2615
 
2616
- #: admin/manage-fields.php:340, add-ons/email-customizer/email-customizer.php:33, add-ons/user-listing/userlisting.php:121, add-ons/user-listing/userlisting.php:898, add-ons/user-listing/userlisting.php:2512
2617
  msgid "Website"
2618
  msgstr ""
2619
 
@@ -2629,7 +2629,7 @@ msgstr ""
2629
  msgid "Jabber / Google Talk"
2630
  msgstr ""
2631
 
2632
- #: admin/manage-fields.php:350, add-ons/user-listing/userlisting.php:124, add-ons/user-listing/userlisting.php:901, add-ons/user-listing/userlisting.php:2513
2633
  msgid "Biographical Info"
2634
  msgstr ""
2635
 
@@ -5506,27 +5506,27 @@ msgstr ""
5506
  msgid "No Edit-profile Forms found in trash"
5507
  msgstr ""
5508
 
5509
- #: add-ons/multiple-forms/edit-profile-forms.php:135, add-ons/multiple-forms/register-forms.php:138, add-ons/user-listing/userlisting.php:2406
5510
  msgid "Shortcode"
5511
  msgstr ""
5512
 
5513
- #: add-ons/multiple-forms/edit-profile-forms.php:155, add-ons/multiple-forms/register-forms.php:159, add-ons/user-listing/userlisting.php:2427
5514
  msgid "(no title)"
5515
  msgstr ""
5516
 
5517
- #: add-ons/multiple-forms/edit-profile-forms.php:177, add-ons/multiple-forms/register-forms.php:180, add-ons/user-listing/userlisting.php:2449
5518
  msgid "Use this shortcode on the page you want the form to be displayed:"
5519
  msgstr ""
5520
 
5521
- #: add-ons/multiple-forms/edit-profile-forms.php:181, add-ons/multiple-forms/register-forms.php:184, add-ons/user-listing/userlisting.php:2453
5522
  msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
5523
  msgstr ""
5524
 
5525
- #: add-ons/multiple-forms/edit-profile-forms.php:175, add-ons/multiple-forms/register-forms.php:178, add-ons/user-listing/userlisting.php:2447
5526
  msgid "The shortcode will be available after you publish this form."
5527
  msgstr ""
5528
 
5529
- #: add-ons/multiple-forms/edit-profile-forms.php:187, add-ons/multiple-forms/register-forms.php:190, add-ons/user-listing/userlisting.php:2486
5530
  msgid "Form Shortcode"
5531
  msgstr ""
5532
 
@@ -5690,7 +5690,7 @@ msgstr ""
5690
  msgid "Display name as"
5691
  msgstr ""
5692
 
5693
- #: add-ons/user-listing/userlisting.php:167, add-ons/user-listing/userlisting.php:337, add-ons/user-listing/userlisting.php:919, add-ons/user-listing/userlisting.php:2520, features/admin-approval/class-admin-approval.php:178, features/roles-editor/roles-editor.php:256
5694
  msgid "Role"
5695
  msgstr ""
5696
 
@@ -5698,11 +5698,11 @@ msgstr ""
5698
  msgid "Role Slug"
5699
  msgstr ""
5700
 
5701
- #: add-ons/user-listing/userlisting.php:169, add-ons/user-listing/userlisting.php:2514
5702
  msgid "Registration Date"
5703
  msgstr ""
5704
 
5705
- #: add-ons/user-listing/userlisting.php:170, add-ons/user-listing/userlisting.php:2519
5706
  msgid "Number of Posts"
5707
  msgstr ""
5708
 
@@ -5730,7 +5730,7 @@ msgstr ""
5730
  msgid "Search all Fields"
5731
  msgstr ""
5732
 
5733
- #: add-ons/user-listing/userlisting.php:222, add-ons/user-listing/userlisting.php:2598
5734
  msgid "Faceted Menus"
5735
  msgstr ""
5736
 
@@ -5766,7 +5766,7 @@ msgstr ""
5766
  msgid "Avatar"
5767
  msgstr ""
5768
 
5769
- #: add-ons/user-listing/userlisting.php:336, add-ons/user-listing/userlisting.php:2515, features/admin-approval/class-admin-approval.php:175
5770
  msgid "Firstname"
5771
  msgstr ""
5772
 
@@ -5794,19 +5794,19 @@ msgstr ""
5794
  msgid "User not found"
5795
  msgstr ""
5796
 
5797
- #: add-ons/user-listing/userlisting.php:913, add-ons/user-listing/userlisting.php:2526
5798
  msgid "Jabber"
5799
  msgstr ""
5800
 
5801
- #: add-ons/user-listing/userlisting.php:910, add-ons/user-listing/userlisting.php:2525
5802
  msgid "Yim"
5803
  msgstr ""
5804
 
5805
- #: add-ons/user-listing/userlisting.php:907, add-ons/user-listing/userlisting.php:2524
5806
  msgid "Aim"
5807
  msgstr ""
5808
 
5809
- #: add-ons/user-listing/userlisting.php:895, add-ons/user-listing/userlisting.php:2517
5810
  msgid "Display Name"
5811
  msgstr ""
5812
 
@@ -5814,7 +5814,7 @@ msgstr ""
5814
  msgid "First/Lastname"
5815
  msgstr ""
5816
 
5817
- #: add-ons/user-listing/userlisting.php:1205, add-ons/user-listing/userlisting.php:1697, add-ons/user-listing/userlisting.php:2233, add-ons/user-listing/userlisting.php:2718
5818
  msgid "Search Users by All Fields"
5819
  msgstr ""
5820
 
@@ -5838,243 +5838,243 @@ msgstr ""
5838
  msgid "View Map"
5839
  msgstr ""
5840
 
5841
- #: add-ons/user-listing/userlisting.php:1654, add-ons/user-listing/userlisting.php:1651
5842
  msgid "Click here to go back"
5843
  msgstr ""
5844
 
5845
- #: add-ons/user-listing/userlisting.php:1651, add-ons/user-listing/userlisting.php:1651
5846
  msgid "Back"
5847
  msgstr ""
5848
 
5849
- #: add-ons/user-listing/userlisting.php:1716
5850
  msgid "You don't have any pagination settings on this userlisting!"
5851
  msgstr ""
5852
 
5853
- #: add-ons/user-listing/userlisting.php:1684
5854
  msgid "&laquo;&laquo; First"
5855
  msgstr ""
5856
 
5857
- #: add-ons/user-listing/userlisting.php:1685
5858
  msgid "&laquo; Prev"
5859
  msgstr ""
5860
 
5861
- #: add-ons/user-listing/userlisting.php:1686
5862
  msgid "Next &raquo; "
5863
  msgstr ""
5864
 
5865
- #: add-ons/user-listing/userlisting.php:1687
5866
  msgid "Last &raquo;&raquo;"
5867
  msgstr ""
5868
 
5869
- #: add-ons/user-listing/userlisting.php:1765
5870
  msgid "Show All"
5871
  msgstr ""
5872
 
5873
- #: add-ons/user-listing/userlisting.php:1841, admin/advanced-settings/includes/views/view-fields.php:78
5874
  msgid "Choose..."
5875
  msgstr ""
5876
 
5877
- #: add-ons/user-listing/userlisting.php:1877
5878
  msgid "Choose or type in an option..."
5879
  msgstr ""
5880
 
5881
- #: add-ons/user-listing/userlisting.php:1980
5882
  msgid "No options available"
5883
  msgstr ""
5884
 
5885
- #: add-ons/user-listing/userlisting.php:2135
5886
  msgid "Remove All Filters"
5887
  msgstr ""
5888
 
5889
- #: add-ons/user-listing/userlisting.php:2250
5890
  msgid "Search"
5891
  msgstr ""
5892
 
5893
- #: add-ons/user-listing/userlisting.php:2251
5894
  msgid "Clear Results"
5895
  msgstr ""
5896
 
5897
- #: add-ons/user-listing/userlisting.php:2456, add-ons/user-listing/userlisting.php:2460
5898
  msgid "Extra shortcode parameters"
5899
  msgstr ""
5900
 
5901
- #: add-ons/user-listing/userlisting.php:2458
5902
  msgid "View all extra shortcode parameters"
5903
  msgstr ""
5904
 
5905
- #: add-ons/user-listing/userlisting.php:2463
5906
  msgid "displays users having a certain meta-value within a certain (extra) meta-field"
5907
  msgstr ""
5908
 
5909
- #: add-ons/user-listing/userlisting.php:2464
5910
  msgid "Example:"
5911
  msgstr ""
5912
 
5913
- #: add-ons/user-listing/userlisting.php:2466
5914
  msgid "Remember though, that the field-value combination must exist in the database."
5915
  msgstr ""
5916
 
5917
- #: add-ons/user-listing/userlisting.php:2472
5918
  msgid "displays only the users that you specified the user_id for"
5919
  msgstr ""
5920
 
5921
- #: add-ons/user-listing/userlisting.php:2478
5922
  msgid "displays all users except the ones you specified the user_id for"
5923
  msgstr ""
5924
 
5925
- #: add-ons/user-listing/userlisting.php:2516, features/admin-approval/class-admin-approval.php:176
5926
  msgid "Lastname"
5927
  msgstr ""
5928
 
5929
- #: add-ons/user-listing/userlisting.php:2541
5930
  msgid "Random (very slow on large databases > 10K user)"
5931
  msgstr ""
5932
 
5933
- #: add-ons/user-listing/userlisting.php:2544
5934
  msgid "Ascending"
5935
  msgstr ""
5936
 
5937
- #: add-ons/user-listing/userlisting.php:2545
5938
  msgid "Descending"
5939
  msgstr ""
5940
 
5941
- #: add-ons/user-listing/userlisting.php:2550
5942
  msgid "Roles to Display"
5943
  msgstr ""
5944
 
5945
- #: add-ons/user-listing/userlisting.php:2550
5946
  msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
5947
  msgstr ""
5948
 
5949
- #: add-ons/user-listing/userlisting.php:2551
5950
  msgid "Number of Users/Page"
5951
  msgstr ""
5952
 
5953
- #: add-ons/user-listing/userlisting.php:2551
5954
  msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
5955
  msgstr ""
5956
 
5957
- #: add-ons/user-listing/userlisting.php:2552
5958
  msgid "Default Sorting Criteria"
5959
  msgstr ""
5960
 
5961
- #: add-ons/user-listing/userlisting.php:2552
5962
  msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
5963
  msgstr ""
5964
 
5965
- #: add-ons/user-listing/userlisting.php:2553
5966
  msgid "Default Sorting Order"
5967
  msgstr ""
5968
 
5969
- #: add-ons/user-listing/userlisting.php:2553
5970
  msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
5971
  msgstr ""
5972
 
5973
- #: add-ons/user-listing/userlisting.php:2554
5974
  msgid "Avatar Size (All-userlisting)"
5975
  msgstr ""
5976
 
5977
- #: add-ons/user-listing/userlisting.php:2554
5978
  msgid "Set the avatar size on the all-userlisting only"
5979
  msgstr ""
5980
 
5981
- #: add-ons/user-listing/userlisting.php:2555
5982
  msgid "Avatar Size (Single-userlisting)"
5983
  msgstr ""
5984
 
5985
- #: add-ons/user-listing/userlisting.php:2555
5986
  msgid "Set the avatar size on the single-userlisting only"
5987
  msgstr ""
5988
 
5989
- #: add-ons/user-listing/userlisting.php:2556
5990
  msgid "Visible only to logged in users?"
5991
  msgstr ""
5992
 
5993
- #: add-ons/user-listing/userlisting.php:2556
5994
  msgid "The userlisting will only be visible only to the logged in users"
5995
  msgstr ""
5996
 
5997
- #: add-ons/user-listing/userlisting.php:2557
5998
  msgid "Visible to following Roles"
5999
  msgstr ""
6000
 
6001
- #: add-ons/user-listing/userlisting.php:2557
6002
  msgid "The userlisting will only be visible to the following roles"
6003
  msgstr ""
6004
 
6005
- #: add-ons/user-listing/userlisting.php:2563
6006
  msgid "Userlisting Settings"
6007
  msgstr ""
6008
 
6009
- #: add-ons/user-listing/userlisting.php:2588
6010
  msgid "Label"
6011
  msgstr ""
6012
 
6013
- #: add-ons/user-listing/userlisting.php:2588
6014
  msgid "Choose the facet name that appears on the frontend"
6015
  msgstr ""
6016
 
6017
- #: add-ons/user-listing/userlisting.php:2589
6018
  msgid "Facet Type"
6019
  msgstr ""
6020
 
6021
- #: add-ons/user-listing/userlisting.php:2589
6022
  msgid "Choose the facet menu type"
6023
  msgstr ""
6024
 
6025
- #: add-ons/user-listing/userlisting.php:2590
6026
  msgid "Facet Meta"
6027
  msgstr ""
6028
 
6029
- #: add-ons/user-listing/userlisting.php:2590
6030
  msgid "Choose the meta field for the facet menu. If you want to use a repeater meta or a meta outisde Profile Builder just type the value and press enter."
6031
  msgstr ""
6032
 
6033
- #: add-ons/user-listing/userlisting.php:2591
6034
  msgid "Behaviour"
6035
  msgstr ""
6036
 
6037
- #: add-ons/user-listing/userlisting.php:2591
6038
  msgid "Narrow the results"
6039
  msgstr ""
6040
 
6041
- #: add-ons/user-listing/userlisting.php:2591
6042
  msgid "Expand the results"
6043
  msgstr ""
6044
 
6045
- #: add-ons/user-listing/userlisting.php:2591
6046
  msgid "Choose how multiple selections affect the results"
6047
  msgstr ""
6048
 
6049
- #: add-ons/user-listing/userlisting.php:2592
6050
  msgid "Visible choices"
6051
  msgstr ""
6052
 
6053
- #: add-ons/user-listing/userlisting.php:2592
6054
  msgid "Show a toggle link after this many choices. Leave blank for all"
6055
  msgstr ""
6056
 
6057
- #: add-ons/user-listing/userlisting.php:2617
6058
  msgid "Search Fields"
6059
  msgstr ""
6060
 
6061
- #: add-ons/user-listing/userlisting.php:2617
6062
  msgid "Choose the fields in which the Search Field will look in"
6063
  msgstr ""
6064
 
6065
- #: add-ons/user-listing/userlisting.php:2622
6066
  msgid "Search Settings"
6067
  msgstr ""
6068
 
6069
- #: add-ons/user-listing/userlisting.php:2694
6070
  msgid "You need to activate the Userlisting feature from within the \"Add-ons\" page!"
6071
  msgstr ""
6072
 
6073
- #: add-ons/user-listing/userlisting.php:2694
6074
  msgid "You can find it in the Profile Builder menu."
6075
  msgstr ""
6076
 
6077
- #: add-ons/user-listing/userlisting.php:2857
6078
  msgid "No results found!"
6079
  msgstr ""
6080
 
@@ -7007,31 +7007,31 @@ msgstr ""
7007
  msgid "Privacy: I would like my site to appear in search engines, and in public listings around this network."
7008
  msgstr ""
7009
 
7010
- #: front-end/default-fields/email/email.php:45
7011
  msgid "There is a pending change request of your email to: %s"
7012
  msgstr ""
7013
 
7014
- #: front-end/default-fields/email/email.php:46
7015
  msgid "Cancel request"
7016
  msgstr ""
7017
 
7018
- #: front-end/default-fields/email/email.php:36
7019
  msgid "If you change this, we will send you an email at your new address to confirm it. <br /><strong>The new address will not become active until confirmed.</strong>"
7020
  msgstr ""
7021
 
7022
- #: front-end/default-fields/email/email.php:71, front-end/extra-fields/input-email/input-email.php:70
7023
  msgid "You must enter a valid email address."
7024
  msgstr ""
7025
 
7026
- #: front-end/default-fields/email/email.php:86, front-end/default-fields/email/email.php:80
7027
  msgid "This email is already reserved to be used soon."
7028
  msgstr ""
7029
 
7030
- #: front-end/default-fields/email/email.php:86, front-end/default-fields/email/email.php:80, front-end/default-fields/email/email.php:96, front-end/default-fields/email/email.php:116, front-end/default-fields/username/username.php:51, front-end/default-fields/username/username.php:67
7031
  msgid "Please try a different one!"
7032
  msgstr ""
7033
 
7034
- #: front-end/default-fields/email/email.php:96, front-end/default-fields/email/email.php:116
7035
  msgid "This email is already in use."
7036
  msgstr ""
7037
 
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:353, ../pb-add-on-social-connect/index.php:412, 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:352, ../pb-add-on-social-connect/index.php:411, 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:2565, features/content-restriction/content-restriction.php:89, features/two-factor-authentication/class-two-factor-authentication.php:125, admin/advanced-settings/includes/forms/placeholder-labels.php:135, admin/advanced-settings/includes/views/view-admin.php:18, admin/advanced-settings/includes/views/view-admin.php:34, admin/advanced-settings/includes/views/view-admin.php:50, admin/advanced-settings/includes/views/view-admin.php:69, admin/advanced-settings/includes/views/view-admin.php:100, admin/advanced-settings/includes/views/view-fields.php:18, admin/advanced-settings/includes/views/view-fields.php:66, admin/advanced-settings/includes/views/view-fields.php:181, admin/advanced-settings/includes/views/view-fields.php:197, admin/advanced-settings/includes/views/view-fields.php:217, admin/advanced-settings/includes/views/view-fields.php:240, admin/advanced-settings/includes/views/view-fields.php:260, admin/advanced-settings/includes/views/view-fields.php:277, admin/advanced-settings/includes/views/view-fields.php:295, admin/advanced-settings/includes/views/view-forms.php:19, admin/advanced-settings/includes/views/view-forms.php:148, admin/advanced-settings/includes/views/view-forms.php:166, admin/advanced-settings/includes/views/view-forms.php:183, admin/advanced-settings/includes/views/view-forms.php:198, admin/advanced-settings/includes/views/view-forms.php:218, admin/advanced-settings/includes/views/view-forms.php:235, admin/advanced-settings/includes/views/view-forms.php:271, admin/advanced-settings/includes/views/view-forms.php:292, admin/advanced-settings/includes/views/view-forms.php:312, admin/advanced-settings/includes/views/view-forms.php:334, admin/advanced-settings/includes/views/view-forms.php:356, admin/advanced-settings/includes/views/view-forms.php:376, admin/advanced-settings/includes/views/view-shortcodes.php:16, admin/advanced-settings/includes/views/view-shortcodes.php:32, admin/advanced-settings/includes/views/view-shortcodes.php:48, admin/advanced-settings/includes/views/view-shortcodes.php:64, admin/advanced-settings/includes/views/view-userlisting.php:53, admin/advanced-settings/includes/views/view-userlisting.php:75, assets/misc/elementor/widgets/class-pb-widget-l.php:75, assets/misc/elementor/widgets/class-pb-widget-rf-epf.php:179, assets/misc/elementor/widgets/class-pb-widget-ul.php:107
57
  msgid "Yes"
58
  msgstr ""
59
 
557
  msgid "Previous"
558
  msgstr ""
559
 
560
+ #: ../pb-add-on-social-connect/index.php:211, ../pb-add-on-social-connect/index.php:212, ../pb-add-on-social-connect/index.php:320, ../pb-add-on-social-connect/index.php:324, admin/add-ons.php:102
561
  msgid "Social Connect"
562
  msgstr ""
563
 
564
+ #: ../pb-add-on-social-connect/index.php:231
565
  msgid "Display on the Following Forms"
566
  msgstr ""
567
 
568
+ #: ../pb-add-on-social-connect/index.php:232
569
  msgid "Disable Registration on"
570
  msgstr ""
571
 
572
+ #: ../pb-add-on-social-connect/index.php:232
573
  msgid "Allow only login with Social Connect on Profile Builder Login Form.<br>Social Connect will still automatically register users on other forms."
574
  msgstr ""
575
 
576
+ #: ../pb-add-on-social-connect/index.php:233
577
  msgid "Facebook Login"
578
  msgstr ""
579
 
580
+ #: ../pb-add-on-social-connect/index.php:234
581
  msgid "Facebook App ID"
582
  msgstr ""
583
 
584
+ #: ../pb-add-on-social-connect/index.php:235
585
  msgid "Google Login"
586
  msgstr ""
587
 
588
+ #: ../pb-add-on-social-connect/index.php:236
589
  msgid "Google Client ID"
590
  msgstr ""
591
 
592
+ #: ../pb-add-on-social-connect/index.php:237
593
  msgid "Twitter Login"
594
  msgstr ""
595
 
596
+ #: ../pb-add-on-social-connect/index.php:238
597
  msgid "Twitter API Key"
598
  msgstr ""
599
 
600
+ #: ../pb-add-on-social-connect/index.php:239
601
  msgid "Twitter API Secret"
602
  msgstr ""
603
 
604
+ #: ../pb-add-on-social-connect/index.php:240
605
  msgid "LinkedIn Login"
606
  msgstr ""
607
 
608
+ #: ../pb-add-on-social-connect/index.php:241
609
  msgid "LinkedIn Client ID"
610
  msgstr ""
611
 
612
+ #: ../pb-add-on-social-connect/index.php:242
613
  msgid "LinkedIn Client Secret"
614
  msgstr ""
615
 
616
+ #: ../pb-add-on-social-connect/index.php:243
617
  msgid "Buttons Order"
618
  msgstr ""
619
 
620
+ #: ../pb-add-on-social-connect/index.php:243
621
  msgid "Drag and drop the dots to re-order."
622
  msgstr ""
623
 
624
+ #: ../pb-add-on-social-connect/index.php:244
625
  msgid "Buttons Re-Order"
626
  msgstr ""
627
 
628
+ #: ../pb-add-on-social-connect/index.php:244
629
  msgid "Save the buttons order from the buttons order checkboxes"
630
  msgstr ""
631
 
632
+ #: ../pb-add-on-social-connect/index.php:245
633
  msgid "Buttons Location"
634
  msgstr ""
635
 
636
+ #: ../pb-add-on-social-connect/index.php:245
637
  msgid "Display social buttons before or after the forms fields."
638
  msgstr ""
639
 
640
+ #: ../pb-add-on-social-connect/index.php:246
641
  msgid "Buttons Style"
642
  msgstr ""
643
 
644
+ #: ../pb-add-on-social-connect/index.php:247
645
  msgid "Google Sign In Button"
646
  msgstr ""
647
 
648
+ #: ../pb-add-on-social-connect/index.php:248
649
  msgid "Heading Before Buttons (Login/Register)"
650
  msgstr ""
651
 
652
+ #: ../pb-add-on-social-connect/index.php:248, ../pb-add-on-social-connect/index.php:249
653
  msgid "Empty field will remove the heading."
654
  msgstr ""
655
 
656
+ #: ../pb-add-on-social-connect/index.php:249
657
  msgid "Heading Before Buttons (Edit Profile)"
658
  msgstr ""
659
 
660
+ #: ../pb-add-on-social-connect/index.php:250
661
  msgid "Facebook Button Text (Login/Register)"
662
  msgstr ""
663
 
664
+ #: ../pb-add-on-social-connect/index.php:251
665
  msgid "Google Button Text (Login/Register)"
666
  msgstr ""
667
 
668
+ #: ../pb-add-on-social-connect/index.php:252
669
  msgid "Twitter Button Text (Login/Register)"
670
  msgstr ""
671
 
672
+ #: ../pb-add-on-social-connect/index.php:253
673
  msgid "LinkedIn Button Text (Login/Register)"
674
  msgstr ""
675
 
676
+ #: ../pb-add-on-social-connect/index.php:254
677
  msgid "Facebook Button Text (Edit Profile)"
678
  msgstr ""
679
 
680
+ #: ../pb-add-on-social-connect/index.php:255
681
  msgid "Google Button Text (Edit Profile)"
682
  msgstr ""
683
 
684
+ #: ../pb-add-on-social-connect/index.php:256
685
  msgid "Twitter Button Text (Edit Profile)"
686
  msgstr ""
687
 
688
+ #: ../pb-add-on-social-connect/index.php:257
689
  msgid "LinkedIn Button Text (Edit Profile)"
690
  msgstr ""
691
 
692
+ #: ../pb-add-on-social-connect/index.php:258
693
  msgid "Unlink Accounts (Edit Profile)"
694
  msgstr ""
695
 
696
+ #: ../pb-add-on-social-connect/index.php:258
697
  msgid "This option will display linked social platforms to users accounts and will allow to easily unlink them in Edit Profile page."
698
  msgstr ""
699
 
700
+ #: ../pb-add-on-social-connect/index.php:259
701
  msgid "Default Social Connect CSS in the Front-end"
702
  msgstr ""
703
 
704
+ #: ../pb-add-on-social-connect/index.php:265, admin/admin-functions.php:211, admin/general-settings.php:112, admin/general-settings.php:112
705
  msgid "Settings"
706
  msgstr ""
707
 
708
+ #: ../pb-add-on-social-connect/index.php:279
709
  msgid "Help"
710
  msgstr ""
711
 
712
+ #: ../pb-add-on-social-connect/index.php:349
713
  msgid "Display Social Connect buttons:"
714
  msgstr ""
715
 
716
+ #: ../pb-add-on-social-connect/index.php:398
717
  msgid "You have successfully unlinked %% from your account."
718
  msgstr ""
719
 
720
+ #: ../pb-add-on-social-connect/index.php:410
721
  msgid "An account with this email address already exists.<br> Do you want to connect it?"
722
  msgstr ""
723
 
724
+ #: ../pb-add-on-social-connect/index.php:413
725
  msgid "Please enter your website account password"
726
  msgstr ""
727
 
728
+ #: ../pb-add-on-social-connect/index.php:414
729
  msgid "Please enter a new email"
730
  msgstr ""
731
 
732
+ #: ../pb-add-on-social-connect/index.php:415
733
  msgid "You have successfully linked your account to %%."
734
  msgstr ""
735
 
736
+ #: ../pb-add-on-social-connect/index.php:416, ../pb-add-on-social-connect/twitter/twitter.php:112
737
  msgid "Something went wrong. Please try again later!"
738
  msgstr ""
739
 
740
+ #: ../pb-add-on-social-connect/index.php:417
741
  msgid "Before you can access your account you need to confirm your email address. Please check your inbox and click the activation link."
742
  msgstr ""
743
 
744
+ #: ../pb-add-on-social-connect/index.php:418
745
  msgid "<strong>ERROR</strong>: You need to confirm your email address before you can log in."
746
  msgstr ""
747
 
748
+ #: ../pb-add-on-social-connect/index.php:419
749
  msgid "Before you can access your account an administrator has to approve it. You will be notified via email."
750
  msgstr ""
751
 
752
+ #: ../pb-add-on-social-connect/index.php:420, features/admin-approval/admin-approval.php:194
753
  msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
754
  msgstr ""
755
 
756
+ #: ../pb-add-on-social-connect/index.php:421
757
  msgid "You will be redirected in 5 seconds. If not, click %%."
758
  msgstr ""
759
 
760
+ #: ../pb-add-on-social-connect/index.php:422, features/functions.php:1337
761
  msgid "here"
762
  msgstr ""
763
 
764
+ #: ../pb-add-on-social-connect/index.php:423
765
  msgid "<strong>You can only login with social accounts, not register!</strong><br>Please link your social account to an existing user account first."
766
  msgstr ""
767
 
768
+ #: ../pb-add-on-social-connect/index.php:424
769
  msgid "Wrong password!"
770
  msgstr ""
771
 
772
+ #: ../pb-add-on-social-connect/index.php:425
773
  msgid "Please enter a valid email!"
774
  msgstr ""
775
 
776
+ #: ../pb-add-on-social-connect/index.php:426
777
  msgid "You can only login on this form.<br>Register with your social account on the register form."
778
  msgstr ""
779
 
780
+ #: ../pb-add-on-social-connect/index.php:427
781
  msgid "Continue"
782
  msgstr ""
783
 
784
+ #: ../pb-add-on-social-connect/index.php:428, ../pb-add-on-social-connect/index.php:447, ../pb-add-on-social-connect/index.php:462
785
  msgid "Ok"
786
  msgstr ""
787
 
788
+ #: ../pb-add-on-social-connect/index.php:436
789
  msgid "To create a new account please confirm:"
790
  msgstr ""
791
 
792
+ #: ../pb-add-on-social-connect/index.php:437
793
  msgid "You must agree to the Terms And Conditions to create a new account."
794
  msgstr ""
795
 
796
+ #: ../pb-add-on-social-connect/index.php:445, ../pb-add-on-social-connect/index.php:446
797
  msgid "Please enter your Facebook email!"
798
  msgstr ""
799
 
800
+ #: ../pb-add-on-social-connect/index.php:459
801
  msgid "Waiting for Twitter..."
802
  msgstr ""
803
 
804
+ #: ../pb-add-on-social-connect/index.php:460, ../pb-add-on-social-connect/index.php:461
805
  msgid "Please enter your Twitter email!"
806
  msgstr ""
807
 
808
+ #: ../pb-add-on-social-connect/index.php:753
809
  msgid "Profile Builder not active!"
810
  msgstr ""
811
 
812
+ #: ../pb-add-on-social-connect/index.php:902, admin/admin-functions.php:38, admin/general-settings.php:11
813
  msgid "General Settings"
814
  msgstr ""
815
 
816
+ #: ../pb-add-on-social-connect/index.php:906
817
  msgid "Application Settings"
818
  msgstr ""
819
 
820
+ #: ../pb-add-on-social-connect/index.php:910
821
  msgid "Appearance Settings"
822
  msgstr ""
823
 
824
+ #: ../pb-add-on-social-connect/index.php:974
825
  msgid "Unlink"
826
  msgstr ""
827
 
828
+ #: ../pb-add-on-social-connect/index.php:981
829
  msgid "Your account is linked with:"
830
  msgstr ""
831
 
869
  msgid "Phone"
870
  msgstr ""
871
 
872
+ #: ../pb-add-on-woocommerce/billing-fields.php:281
873
  msgid "Ship to a different address?"
874
  msgstr ""
875
 
876
+ #: ../pb-add-on-woocommerce/index.php:870
877
  msgid "WooCommerce needs to be installed and activated for Profile Builder - WooCommerce Sync Add-on to work!"
878
  msgstr ""
879
 
880
+ #: ../pb-add-on-woocommerce/index.php:167, ../pb-add-on-woocommerce/index.php:753
881
  msgid "Billing Address"
882
  msgstr ""
883
 
885
  msgid "Displays customer billing fields in front-end. "
886
  msgstr ""
887
 
888
+ #: ../pb-add-on-woocommerce/index.php:171, ../pb-add-on-woocommerce/index.php:754
889
  msgid "Shipping Address"
890
  msgstr ""
891
 
893
  msgid "Displays customer shipping fields in front-end. "
894
  msgstr ""
895
 
896
+ #: ../pb-add-on-woocommerce/index.php:263, ../pb-add-on-woocommerce/index.php:282, ../pb-add-on-woocommerce/index.php:382, ../pb-add-on-woocommerce/index.php:379, ../pb-add-on-woocommerce/index.php:809
897
  msgid "Address line 2"
898
  msgstr ""
899
 
900
+ #: ../pb-add-on-woocommerce/index.php:271
901
  msgid "Billing Fields"
902
  msgstr ""
903
 
904
+ #: ../pb-add-on-woocommerce/index.php:271
905
  msgid "Select which WooCommerce Billing fields to display to the user ( drag and drop to re-order ) and which should be required"
906
  msgstr ""
907
 
908
+ #: ../pb-add-on-woocommerce/index.php:272
909
  msgid "Billing Fields Order"
910
  msgstr ""
911
 
912
+ #: ../pb-add-on-woocommerce/index.php:272
913
  msgid "Save the billing fields order from the billing fields checkboxes"
914
  msgstr ""
915
 
916
+ #: ../pb-add-on-woocommerce/index.php:273
917
  msgid "Billing Fields Name"
918
  msgstr ""
919
 
920
+ #: ../pb-add-on-woocommerce/index.php:273
921
  msgid "Save the billing fields names"
922
  msgstr ""
923
 
924
+ #: ../pb-add-on-woocommerce/index.php:290
925
  msgid "Shipping Fields"
926
  msgstr ""
927
 
928
+ #: ../pb-add-on-woocommerce/index.php:290
929
  msgid "Select which WooCommerce Shipping fields to display to the user ( drag and drop to re-order ) and which should be required"
930
  msgstr ""
931
 
932
+ #: ../pb-add-on-woocommerce/index.php:291
933
  msgid "Shipping Fields Order"
934
  msgstr ""
935
 
936
+ #: ../pb-add-on-woocommerce/index.php:291
937
  msgid "Save the shipping fields order from the shipping fields checkboxes"
938
  msgstr ""
939
 
940
+ #: ../pb-add-on-woocommerce/index.php:292
941
  msgid "Shipping Fields Name"
942
  msgstr ""
943
 
944
+ #: ../pb-add-on-woocommerce/index.php:292
945
  msgid "Save the shipping fields names"
946
  msgstr ""
947
 
948
+ #: ../pb-add-on-woocommerce/index.php:320
949
  msgid "Field Name"
950
  msgstr ""
951
 
952
+ #: ../pb-add-on-woocommerce/index.php:321, admin/manage-fields.php:251
953
  msgid "Required"
954
  msgstr ""
955
 
956
+ #: ../pb-add-on-woocommerce/index.php:384
957
  msgid "Click to edit "
958
  msgstr ""
959
 
960
+ #: ../pb-add-on-woocommerce/index.php:408, front-end/default-fields/email/email.php:69
961
  msgid "The email you entered is not a valid email address."
962
  msgstr ""
963
 
964
+ #: ../pb-add-on-woocommerce/index.php:666
965
  msgid "No options available. Please select one country."
966
  msgstr ""
967
 
968
+ #: ../pb-add-on-woocommerce/index.php:685, ../pb-add-on-woocommerce/index.php:710
969
  msgid "Billing "
970
  msgstr ""
971
 
972
+ #: ../pb-add-on-woocommerce/index.php:693, ../pb-add-on-woocommerce/index.php:717
973
  msgid "Shipping "
974
  msgstr ""
975
 
1545
  msgid "Show"
1546
  msgstr ""
1547
 
1548
+ #: admin/admin-bar.php:81, add-ons/user-listing/userlisting.php:1775
1549
  msgid "Hide"
1550
  msgstr ""
1551
 
2077
  msgid "Username and Email"
2078
  msgstr ""
2079
 
2080
+ #: admin/general-settings.php:302, admin/manage-fields.php:333, front-end/login.php:334, front-end/login.php:348, front-end/login.php:532, add-ons/custom-redirects/custom_redirects_admin.php:60, add-ons/email-customizer/email-customizer.php:28, add-ons/user-listing/userlisting.php:112, add-ons/user-listing/userlisting.php:335, add-ons/user-listing/userlisting.php:877, add-ons/user-listing/userlisting.php:2519, features/admin-approval/class-admin-approval.php:174, features/email-confirmation/class-email-confirmation.php:168, admin/advanced-settings/includes/views/view-fields.php:121
2081
  msgid "Username"
2082
  msgstr ""
2083
 
2084
+ #: admin/general-settings.php:303, front-end/login.php:529, front-end/recover.php:118, add-ons/email-customizer/email-customizer.php:29, add-ons/user-listing/userlisting.php:118, add-ons/user-listing/userlisting.php:883, add-ons/user-listing/userlisting.php:2520, features/admin-approval/class-admin-approval.php:177, features/email-confirmation/class-email-confirmation.php:169, admin/advanced-settings/includes/shortcodes/resend-activation.php:9
2085
  msgid "Email"
2086
  msgstr ""
2087
 
2601
  msgid "Usernames cannot be changed."
2602
  msgstr ""
2603
 
2604
+ #: admin/manage-fields.php:336, add-ons/user-listing/userlisting.php:916, add-ons/user-listing/userlisting.php:2527
2605
  msgid "Nickname"
2606
  msgstr ""
2607
 
2613
  msgid "E-mail"
2614
  msgstr ""
2615
 
2616
+ #: admin/manage-fields.php:340, add-ons/email-customizer/email-customizer.php:33, add-ons/user-listing/userlisting.php:121, add-ons/user-listing/userlisting.php:898, add-ons/user-listing/userlisting.php:2521
2617
  msgid "Website"
2618
  msgstr ""
2619
 
2629
  msgid "Jabber / Google Talk"
2630
  msgstr ""
2631
 
2632
+ #: admin/manage-fields.php:350, add-ons/user-listing/userlisting.php:124, add-ons/user-listing/userlisting.php:901, add-ons/user-listing/userlisting.php:2522
2633
  msgid "Biographical Info"
2634
  msgstr ""
2635
 
5506
  msgid "No Edit-profile Forms found in trash"
5507
  msgstr ""
5508
 
5509
+ #: add-ons/multiple-forms/edit-profile-forms.php:135, add-ons/multiple-forms/register-forms.php:138, add-ons/user-listing/userlisting.php:2415
5510
  msgid "Shortcode"
5511
  msgstr ""
5512
 
5513
+ #: add-ons/multiple-forms/edit-profile-forms.php:155, add-ons/multiple-forms/register-forms.php:159, add-ons/user-listing/userlisting.php:2436
5514
  msgid "(no title)"
5515
  msgstr ""
5516
 
5517
+ #: add-ons/multiple-forms/edit-profile-forms.php:177, add-ons/multiple-forms/register-forms.php:180, add-ons/user-listing/userlisting.php:2458
5518
  msgid "Use this shortcode on the page you want the form to be displayed:"
5519
  msgstr ""
5520
 
5521
+ #: add-ons/multiple-forms/edit-profile-forms.php:181, add-ons/multiple-forms/register-forms.php:184, add-ons/user-listing/userlisting.php:2462
5522
  msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
5523
  msgstr ""
5524
 
5525
+ #: add-ons/multiple-forms/edit-profile-forms.php:175, add-ons/multiple-forms/register-forms.php:178, add-ons/user-listing/userlisting.php:2456
5526
  msgid "The shortcode will be available after you publish this form."
5527
  msgstr ""
5528
 
5529
+ #: add-ons/multiple-forms/edit-profile-forms.php:187, add-ons/multiple-forms/register-forms.php:190, add-ons/user-listing/userlisting.php:2495
5530
  msgid "Form Shortcode"
5531
  msgstr ""
5532
 
5690
  msgid "Display name as"
5691
  msgstr ""
5692
 
5693
+ #: add-ons/user-listing/userlisting.php:167, add-ons/user-listing/userlisting.php:337, add-ons/user-listing/userlisting.php:919, add-ons/user-listing/userlisting.php:2529, features/admin-approval/class-admin-approval.php:178, features/roles-editor/roles-editor.php:256
5694
  msgid "Role"
5695
  msgstr ""
5696
 
5698
  msgid "Role Slug"
5699
  msgstr ""
5700
 
5701
+ #: add-ons/user-listing/userlisting.php:169, add-ons/user-listing/userlisting.php:2523
5702
  msgid "Registration Date"
5703
  msgstr ""
5704
 
5705
+ #: add-ons/user-listing/userlisting.php:170, add-ons/user-listing/userlisting.php:2528
5706
  msgid "Number of Posts"
5707
  msgstr ""
5708
 
5730
  msgid "Search all Fields"
5731
  msgstr ""
5732
 
5733
+ #: add-ons/user-listing/userlisting.php:222, add-ons/user-listing/userlisting.php:2607
5734
  msgid "Faceted Menus"
5735
  msgstr ""
5736
 
5766
  msgid "Avatar"
5767
  msgstr ""
5768
 
5769
+ #: add-ons/user-listing/userlisting.php:336, add-ons/user-listing/userlisting.php:2524, features/admin-approval/class-admin-approval.php:175
5770
  msgid "Firstname"
5771
  msgstr ""
5772
 
5794
  msgid "User not found"
5795
  msgstr ""
5796
 
5797
+ #: add-ons/user-listing/userlisting.php:913, add-ons/user-listing/userlisting.php:2535
5798
  msgid "Jabber"
5799
  msgstr ""
5800
 
5801
+ #: add-ons/user-listing/userlisting.php:910, add-ons/user-listing/userlisting.php:2534
5802
  msgid "Yim"
5803
  msgstr ""
5804
 
5805
+ #: add-ons/user-listing/userlisting.php:907, add-ons/user-listing/userlisting.php:2533
5806
  msgid "Aim"
5807
  msgstr ""
5808
 
5809
+ #: add-ons/user-listing/userlisting.php:895, add-ons/user-listing/userlisting.php:2526
5810
  msgid "Display Name"
5811
  msgstr ""
5812
 
5814
  msgid "First/Lastname"
5815
  msgstr ""
5816
 
5817
+ #: add-ons/user-listing/userlisting.php:1205, add-ons/user-listing/userlisting.php:1706, add-ons/user-listing/userlisting.php:2242, add-ons/user-listing/userlisting.php:2727
5818
  msgid "Search Users by All Fields"
5819
  msgstr ""
5820
 
5838
  msgid "View Map"
5839
  msgstr ""
5840
 
5841
+ #: add-ons/user-listing/userlisting.php:1663, add-ons/user-listing/userlisting.php:1660
5842
  msgid "Click here to go back"
5843
  msgstr ""
5844
 
5845
+ #: add-ons/user-listing/userlisting.php:1660, add-ons/user-listing/userlisting.php:1660
5846
  msgid "Back"
5847
  msgstr ""
5848
 
5849
+ #: add-ons/user-listing/userlisting.php:1725
5850
  msgid "You don't have any pagination settings on this userlisting!"
5851
  msgstr ""
5852
 
5853
+ #: add-ons/user-listing/userlisting.php:1693
5854
  msgid "&laquo;&laquo; First"
5855
  msgstr ""
5856
 
5857
+ #: add-ons/user-listing/userlisting.php:1694
5858
  msgid "&laquo; Prev"
5859
  msgstr ""
5860
 
5861
+ #: add-ons/user-listing/userlisting.php:1695
5862
  msgid "Next &raquo; "
5863
  msgstr ""
5864
 
5865
+ #: add-ons/user-listing/userlisting.php:1696
5866
  msgid "Last &raquo;&raquo;"
5867
  msgstr ""
5868
 
5869
+ #: add-ons/user-listing/userlisting.php:1774
5870
  msgid "Show All"
5871
  msgstr ""
5872
 
5873
+ #: add-ons/user-listing/userlisting.php:1850, admin/advanced-settings/includes/views/view-fields.php:78
5874
  msgid "Choose..."
5875
  msgstr ""
5876
 
5877
+ #: add-ons/user-listing/userlisting.php:1886
5878
  msgid "Choose or type in an option..."
5879
  msgstr ""
5880
 
5881
+ #: add-ons/user-listing/userlisting.php:1989
5882
  msgid "No options available"
5883
  msgstr ""
5884
 
5885
+ #: add-ons/user-listing/userlisting.php:2144
5886
  msgid "Remove All Filters"
5887
  msgstr ""
5888
 
5889
+ #: add-ons/user-listing/userlisting.php:2259
5890
  msgid "Search"
5891
  msgstr ""
5892
 
5893
+ #: add-ons/user-listing/userlisting.php:2260
5894
  msgid "Clear Results"
5895
  msgstr ""
5896
 
5897
+ #: add-ons/user-listing/userlisting.php:2465, add-ons/user-listing/userlisting.php:2469
5898
  msgid "Extra shortcode parameters"
5899
  msgstr ""
5900
 
5901
+ #: add-ons/user-listing/userlisting.php:2467
5902
  msgid "View all extra shortcode parameters"
5903
  msgstr ""
5904
 
5905
+ #: add-ons/user-listing/userlisting.php:2472
5906
  msgid "displays users having a certain meta-value within a certain (extra) meta-field"
5907
  msgstr ""
5908
 
5909
+ #: add-ons/user-listing/userlisting.php:2473
5910
  msgid "Example:"
5911
  msgstr ""
5912
 
5913
+ #: add-ons/user-listing/userlisting.php:2475
5914
  msgid "Remember though, that the field-value combination must exist in the database."
5915
  msgstr ""
5916
 
5917
+ #: add-ons/user-listing/userlisting.php:2481
5918
  msgid "displays only the users that you specified the user_id for"
5919
  msgstr ""
5920
 
5921
+ #: add-ons/user-listing/userlisting.php:2487
5922
  msgid "displays all users except the ones you specified the user_id for"
5923
  msgstr ""
5924
 
5925
+ #: add-ons/user-listing/userlisting.php:2525, features/admin-approval/class-admin-approval.php:176
5926
  msgid "Lastname"
5927
  msgstr ""
5928
 
5929
+ #: add-ons/user-listing/userlisting.php:2550
5930
  msgid "Random (very slow on large databases > 10K user)"
5931
  msgstr ""
5932
 
5933
+ #: add-ons/user-listing/userlisting.php:2553
5934
  msgid "Ascending"
5935
  msgstr ""
5936
 
5937
+ #: add-ons/user-listing/userlisting.php:2554
5938
  msgid "Descending"
5939
  msgstr ""
5940
 
5941
+ #: add-ons/user-listing/userlisting.php:2559
5942
  msgid "Roles to Display"
5943
  msgstr ""
5944
 
5945
+ #: add-ons/user-listing/userlisting.php:2559
5946
  msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
5947
  msgstr ""
5948
 
5949
+ #: add-ons/user-listing/userlisting.php:2560
5950
  msgid "Number of Users/Page"
5951
  msgstr ""
5952
 
5953
+ #: add-ons/user-listing/userlisting.php:2560
5954
  msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
5955
  msgstr ""
5956
 
5957
+ #: add-ons/user-listing/userlisting.php:2561
5958
  msgid "Default Sorting Criteria"
5959
  msgstr ""
5960
 
5961
+ #: add-ons/user-listing/userlisting.php:2561
5962
  msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
5963
  msgstr ""
5964
 
5965
+ #: add-ons/user-listing/userlisting.php:2562
5966
  msgid "Default Sorting Order"
5967
  msgstr ""
5968
 
5969
+ #: add-ons/user-listing/userlisting.php:2562
5970
  msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
5971
  msgstr ""
5972
 
5973
+ #: add-ons/user-listing/userlisting.php:2563
5974
  msgid "Avatar Size (All-userlisting)"
5975
  msgstr ""
5976
 
5977
+ #: add-ons/user-listing/userlisting.php:2563
5978
  msgid "Set the avatar size on the all-userlisting only"
5979
  msgstr ""
5980
 
5981
+ #: add-ons/user-listing/userlisting.php:2564
5982
  msgid "Avatar Size (Single-userlisting)"
5983
  msgstr ""
5984
 
5985
+ #: add-ons/user-listing/userlisting.php:2564
5986
  msgid "Set the avatar size on the single-userlisting only"
5987
  msgstr ""
5988
 
5989
+ #: add-ons/user-listing/userlisting.php:2565
5990
  msgid "Visible only to logged in users?"
5991
  msgstr ""
5992
 
5993
+ #: add-ons/user-listing/userlisting.php:2565
5994
  msgid "The userlisting will only be visible only to the logged in users"
5995
  msgstr ""
5996
 
5997
+ #: add-ons/user-listing/userlisting.php:2566
5998
  msgid "Visible to following Roles"
5999
  msgstr ""
6000
 
6001
+ #: add-ons/user-listing/userlisting.php:2566
6002
  msgid "The userlisting will only be visible to the following roles"
6003
  msgstr ""
6004
 
6005
+ #: add-ons/user-listing/userlisting.php:2572
6006
  msgid "Userlisting Settings"
6007
  msgstr ""
6008
 
6009
+ #: add-ons/user-listing/userlisting.php:2597
6010
  msgid "Label"
6011
  msgstr ""
6012
 
6013
+ #: add-ons/user-listing/userlisting.php:2597
6014
  msgid "Choose the facet name that appears on the frontend"
6015
  msgstr ""
6016
 
6017
+ #: add-ons/user-listing/userlisting.php:2598
6018
  msgid "Facet Type"
6019
  msgstr ""
6020
 
6021
+ #: add-ons/user-listing/userlisting.php:2598
6022
  msgid "Choose the facet menu type"
6023
  msgstr ""
6024
 
6025
+ #: add-ons/user-listing/userlisting.php:2599
6026
  msgid "Facet Meta"
6027
  msgstr ""
6028
 
6029
+ #: add-ons/user-listing/userlisting.php:2599
6030
  msgid "Choose the meta field for the facet menu. If you want to use a repeater meta or a meta outisde Profile Builder just type the value and press enter."
6031
  msgstr ""
6032
 
6033
+ #: add-ons/user-listing/userlisting.php:2600
6034
  msgid "Behaviour"
6035
  msgstr ""
6036
 
6037
+ #: add-ons/user-listing/userlisting.php:2600
6038
  msgid "Narrow the results"
6039
  msgstr ""
6040
 
6041
+ #: add-ons/user-listing/userlisting.php:2600
6042
  msgid "Expand the results"
6043
  msgstr ""
6044
 
6045
+ #: add-ons/user-listing/userlisting.php:2600
6046
  msgid "Choose how multiple selections affect the results"
6047
  msgstr ""
6048
 
6049
+ #: add-ons/user-listing/userlisting.php:2601
6050
  msgid "Visible choices"
6051
  msgstr ""
6052
 
6053
+ #: add-ons/user-listing/userlisting.php:2601
6054
  msgid "Show a toggle link after this many choices. Leave blank for all"
6055
  msgstr ""
6056
 
6057
+ #: add-ons/user-listing/userlisting.php:2626
6058
  msgid "Search Fields"
6059
  msgstr ""
6060
 
6061
+ #: add-ons/user-listing/userlisting.php:2626
6062
  msgid "Choose the fields in which the Search Field will look in"
6063
  msgstr ""
6064
 
6065
+ #: add-ons/user-listing/userlisting.php:2631
6066
  msgid "Search Settings"
6067
  msgstr ""
6068
 
6069
+ #: add-ons/user-listing/userlisting.php:2703
6070
  msgid "You need to activate the Userlisting feature from within the \"Add-ons\" page!"
6071
  msgstr ""
6072
 
6073
+ #: add-ons/user-listing/userlisting.php:2703
6074
  msgid "You can find it in the Profile Builder menu."
6075
  msgstr ""
6076
 
6077
+ #: add-ons/user-listing/userlisting.php:2866
6078
  msgid "No results found!"
6079
  msgstr ""
6080
 
7007
  msgid "Privacy: I would like my site to appear in search engines, and in public listings around this network."
7008
  msgstr ""
7009
 
7010
+ #: front-end/default-fields/email/email.php:46
7011
  msgid "There is a pending change request of your email to: %s"
7012
  msgstr ""
7013
 
7014
+ #: front-end/default-fields/email/email.php:47
7015
  msgid "Cancel request"
7016
  msgstr ""
7017
 
7018
+ #: front-end/default-fields/email/email.php:37
7019
  msgid "If you change this, we will send you an email at your new address to confirm it. <br /><strong>The new address will not become active until confirmed.</strong>"
7020
  msgstr ""
7021
 
7022
+ #: front-end/default-fields/email/email.php:73, front-end/extra-fields/input-email/input-email.php:70
7023
  msgid "You must enter a valid email address."
7024
  msgstr ""
7025
 
7026
+ #: front-end/default-fields/email/email.php:88, front-end/default-fields/email/email.php:82
7027
  msgid "This email is already reserved to be used soon."
7028
  msgstr ""
7029
 
7030
+ #: front-end/default-fields/email/email.php:88, front-end/default-fields/email/email.php:82, front-end/default-fields/email/email.php:98, front-end/default-fields/email/email.php:118, front-end/default-fields/username/username.php:51, front-end/default-fields/username/username.php:67
7031
  msgid "Please try a different one!"
7032
  msgstr ""
7033
 
7034
+ #: front-end/default-fields/email/email.php:98, front-end/default-fields/email/email.php:118
7035
  msgid "This email is already in use."
7036
  msgstr ""
7037